-
I have the following Code <script> function delete(){ var e = document.getElementById(‘parent’); e.removeChild(e.children[0]); } </script> <div id=”parent”> <div id=”child”> <input …
- 371 views
- 5 answers
- 0 votes
-
<html> <head> <meta charset="UTF-8" /> <title>Taschenrechner</title> <script type="text/javascript"> function Check(Eingabe) { var nur_das = "0123456789[]()-+*%/"; for (var i = 0; …
- 397 views
- 1 answers
- 0 votes
-
I have this js class: export class ScrollBehaviorComponent { init() { const body = document.querySelector(‘body’) let previousScroll = window.pageYOffset || …
- 348 views
- 0 answers
- 0 votes
-
I’m trying to add an onScroll event to my React navbar. What’s supposed to happen is whenever the user scrolls …
- 347 views
- 0 answers
- 0 votes
-
In my app I created a React portal which consists of a div covering the entire document and contains a …
- 385 views
- 2 answers
- 0 votes
-
When I set a handler using OnClick it works fine and console.log always use the actual state. But when I …
- 409 views
- 2 answers
- 0 votes
-
<!DOCTYPE html> <html onmouseup="end()"> <head> <meta charset="UTF-8"> <script type="text/javascript"> var counter; var count = 0; function start(outp) { counter = …
- 383 views
- 1 answers
- 0 votes